home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 32 / Mac Magazin and MacEasy Magazine CD - Issue 32.iso / Multimedia / MIDI / JUNO Librarian 1.1.7 / Sample Scripts / 16 Change DCO Range < prev    next >
Text File  |  1994-01-28  |  302b  |  14 lines

  1. tell application "JUNO Librarian"
  2.     activate -- if needed
  3.     set x to Parameter 16 of Window "Sample"
  4.     set x to (round (x ÷ 8) rounding down)
  5.     set x to x * 8
  6.     
  7.     -- select 1 of 3
  8.     --    set x to x + 1 -- 16"
  9.     --    set x to x + 2 -- 8"
  10.     set x to x + 4 -- 4"
  11.     
  12.     copy x to Parameter 16 of Window "Sample"
  13. end tell
  14.